home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / rpc_X25.nasl < prev    next >
Text File  |  2005-01-14  |  2KB  |  80 lines

  1. #
  2. # This script was written by Renaud Deraison <deraison@cvs.nessus.org>
  3. #
  4. # See the Nessus Scripts License for details
  5. #
  6.  
  7. if(description)
  8. {
  9.  script_id(10209);
  10.  script_version ("$Revision: 1.10 $");
  11.  script_cve_id("CAN-1999-0648");
  12.  name["english"] = "X25 service";
  13.  name["francais"] = "Service X25";
  14.  script_name(english:name["english"], francais:name["francais"]);
  15.  
  16.  desc["english"] = "
  17. The X25 RPC service is running. 
  18. This service may allow an intruder
  19. to connect via an X25 gateway rather
  20. than by TCP/IP. In addition to that,
  21. it may become a security threat
  22. if a security vulnerability is
  23. found.
  24.  
  25. If you do not use this service,
  26. then disable it. 
  27.  
  28. Risk factor : Low / Medium";
  29.  
  30.  
  31.  desc["francais"] = "
  32. Le service RPC X25 tourne.
  33. Si vous ne l'utilisez pas, alors
  34. dΘsactivez-le puisqu'il risque de
  35. devenir un jour une faille de 
  36. sΘcuritΘ si une vulnerabilitΘ 
  37. est trouvΘe.
  38.  
  39. Facteur de risque : Faible";
  40.  
  41.  
  42.  script_description(english:desc["english"], francais:desc["francais"]);
  43.  
  44.  summary["english"] = "checks the presence of a RPC service";
  45.  summary["francais"] = "vΘrifie la prΘsence d'un service RPC";
  46.  script_summary(english:summary["english"], francais:summary["francais"]);
  47.  
  48.  script_category(ACT_GATHER_INFO);
  49.  
  50.  
  51.  script_copyright(english:"This script is Copyright (C) 1999 Renaud Deraison",
  52.         francais:"Ce script est Copyright (C) 1999 Renaud Deraison");
  53.  family["english"] = "RPC"; 
  54.  family["francais"] = "RPC";
  55.  script_family(english:family["english"], francais:family["francais"]);
  56.  script_dependencie("rpc_portmap.nasl");
  57.  script_require_keys("rpc/portmap");
  58.  exit(0);
  59. }
  60.  
  61. #
  62. # The script code starts here
  63. #
  64.  
  65. include("misc_func.inc");
  66.  
  67. RPC_PROG = 100022;
  68. tcp = 0;
  69. port = get_rpc_port(program:RPC_PROG, protocol:IPPROTO_UDP);
  70. if(!port){
  71.     port = get_rpc_port(program:RPC_PROG, protocol:IPPROTO_TCP);
  72.     tcp = 1;
  73.     }
  74.  
  75. if(port)
  76. {
  77.  if(tcp)security_warning(port);
  78.  else security_warning(port, protocol:"udp");
  79. }
  80.